home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / ClassEditor.0.4 / Source / CESideSplitView.m < prev    next >
Encoding:
Text File  |  1995-05-29  |  848 b   |  42 lines

  1. /* CESideSplitView.m                 
  2.  *
  3.  * This object controls the data of a beaker (molecules, cameras, groups etc.)
  4.  * It is the main document of BeakerBoy and controls everything from loading to
  5.  * setting up the browser which does most of the other work.
  6.  *
  7.  * For interface-info see the header file. The comments in this file mostly
  8.  * cover only the real implementation details.
  9.  *
  10.  * Written by:         Thomas Engel
  11.  * Created:            23.10.1993 (Copyleft)
  12.  * Last modified:     12.11.1994
  13.  */
  14.  
  15. #define CURRENT_VERSION 1
  16.  
  17. #import "CESideSplitView.h"
  18.  
  19. @implementation CESideSplitView
  20.  
  21. + initialize
  22. {
  23.     if ( self == [CESideSplitView class] )
  24.         [CESideSplitView setVersion:CURRENT_VERSION];
  25.  
  26.     return self;
  27. }
  28.  
  29. - awakeFromNib
  30. {
  31.     if( leftView != nil && rightView != nil ) [self initViews];
  32.     return self;
  33. }
  34.  
  35. @end
  36.  
  37. /*
  38.  * History: 13.01.95 Buh
  39.  *            
  40.  *
  41.  * Bugs: - ...
  42.  */